home *** CD-ROM | disk | FTP | other *** search
/ Java 1996 August / Java - Summer 1996.iso / rockridge / java / nutsandbolts / betaexample / Count.java < prev    next >
Encoding:
Java Source  |  1995-11-13  |  245 b   |  12 lines

  1. class Count {
  2.     public static void main(String args[])
  3.     throws java.io.IOException
  4.     {
  5.         int count = 0;
  6.  
  7.         while (System.in.read() != -1)
  8.             count++;
  9.         System.out.println("Input has " + count + " chars.");
  10.     }
  11. }
  12.